assets/
├── colors/
| |-- color1.css
| |-- color1.css.map
| |-- color1.scss
├── css/
| |-- animated.css
| |-- dark-style.css
| |-- dark-style.css.map
| |-- dark-style.scss
| |-- icons.css
| |-- skin-modes.css
| |-- skin-modes.css.map
| |-- skin-modes.scss
| |-- style.css
| |-- style.css.map
| |-- transparent-style.css
| |-- transparent-style.css.map
| |-- transparent-style.scss
├── iconfonts/
├── images/
├── js/
├── plugins/
├── scss/
`-- switcher/
Sash - Bootstrap Admin Panel Template / : Root template folder contain all html, js, css, scss, images
and other files.
assets/ : Folder contain all the Admin Template assets which has css, js, scss, and images.
colors/: Folder contain assets which has colors for all versions.
color1/ : color1 file contains main color theme colors css.css/: Folder contain assets which has complete styles.
dark-style : Dark theme css for the template.icons : icons.css has all template icons link are importated.skin-modes : skins.css has external styles for template.style : Main style sheet for template which includes plugins.transparent-style : Transparent theme css for the template.images/ : Template images.
js/ : Folder contain all the template pages js files.
plugins/ : Folder contain all template plugins.
scss/ : Folder contain all pages scss files and all plugins scss files also included.
swicther/ : Folder contain switcher assets.
gulpfile.js : Gulp tasks js file.package.gulp.json : Gulp package json file.Note: If you want to use only CSS format then you should follow below process.
Step-1: Remove complete scss folder. Root path: (../assets/scss)
Step-2: Remove .scss and .css.map extension related files in css folder. Root path: (../assets/css/*.scss) and (../assets/css/*.css.map)
Step-3: Remove "gulpfile.js", "package.json", "package-lock.json" files.